home *** CD-ROM | disk | FTP | other *** search
- /* typedefs.h for SAT Quizzer v0.3 */
-
- enum pos {noun, verb, adj, other} ;
-
- typedef char wordtype[MAXWORD];
- typedef char meaningtype[MAXMEANING];
- typedef enum pos postype;
-
- struct entry{
- postype partofspeech;
- wordtype word;
- meaningtype definition;
- } ;
-
- typedef struct node {
- struct entry info;
- struct node *next;
- } *wordlist;
-
- typedef wordlist allwords[NUMSLOTS];
-
- typedef wordlist *ptrarray;
-